import { Flex, Button, Alert } from '@aws-amplify/ui-react'; import { useState } from 'react'; export const AccessibleAlert = () => { const [isAlertVisible, setIsAlertVisible] = useState(false); return ( {isAlertVisible ? ( This is an example alert. ) : null} ); };